When upgrading from StyleGrid 4.5.x or 5.x then the following things have changed:

1)
     The ColumnWidth property was removed. But is now provided on the new
     StyleGridColumn class.

     So to migrate your project you need to:

     Change code like this:
          StyleGrid1.ColumnWidth(x) = value

     To code like this:
	  StyleGrid1.Column(x).Width = value

     (Be aware of that the new code will not auto refresh the grid)


2)
     The ColumnMinWidth property was removed. But is now provided on the new
     StyleGridColumn class.

     So to migrate your project you need to:

     Change code like this:
          StyleGrid1.ColumnMinWidth(x) = value

     To code like this:
	  StyleGrid1.Column(x).MinWidth = value

     (Be aware of that the new code will not auto refresh the grid)

3)
     The Header property was removed. But is now provided on the new
     StyleGridColumn class.

     So to migrate your project you need to:

     Change code like this:
          StyleGrid1.Header(x).Text = value

     To code like this:
	  StyleGrid1.Column(x).Header.Text = value

4)
     The ColumnAlignment property was removed. But is now provided on the new
     StyleGridColumn class.

     So to migrate your project you need to:

     Change code like this:
          StyleGrid1.ColumnAlignment(x) = value

     To code like this:
	  StyleGrid1.Column(x).Alignment = value

5)
     The RowVisible property was removed. But is now provided on the
     StyleGridRow class.

     So to migrate your project you need to:

     Change code like this:
          StyleGrid1.RowVisible(y) = value

     To code like this:
	  StyleGrid1.Row(y).Visible = value


